home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ASMVLA00.ZIP / ASM0.ASM next >
Assembly Source File  |  1993-03-21  |  239b  |  19 lines

  1.     DOSSEG
  2.     .MODEL SMALL
  3.     .STACK 200h
  4.     .DATA
  5.     .CODE
  6.  
  7. START:
  8.  
  9. ;
  10. ;   Your code goes here...
  11. ;
  12.  
  13.     mov     ax,4c00h
  14.     int     21h
  15. END START
  16.  
  17. ;   THIS CODE DOES ABSOLUTLY NOTHING EXCEPT RETURN CONTROL TO DOS!
  18.  
  19.